type github.com/jackc/pgx/v5/pgtype.durationWrapper

9 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L498: type durationWrapper time.Duration
		builtin_wrappers.go#L500: func (w durationWrapper) SkipUnderlyingTypePlan() {}
		builtin_wrappers.go#L502: func (w *durationWrapper) ScanInterval(v Interval) error {
		builtin_wrappers.go#L508: 	*w = durationWrapper(time.Duration(us) * time.Microsecond)
		builtin_wrappers.go#L512: func (w durationWrapper) IntervalValue() (Interval, error) {
		pgtype.go#L637: 		return &wrapDurationScanPlan{}, (*durationWrapper)(target), true
		pgtype.go#L806: 	return plan.next.Scan(src, (*durationWrapper)(dst.(*time.Duration)))
		pgtype.go#L1511: 		return &wrapDurationEncodePlan{}, durationWrapper(value), true
		pgtype.go#L1680: 	return plan.next.Encode(durationWrapper(value.(time.Duration)), buf)